home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / contrib / pgperl / usersub.c < prev   
Encoding:
C/C++ Source or Header  |  1992-08-27  |  498 b   |  28 lines

  1. /*
  2.  * Interface to Postgres 2.0
  3.  *
  4.  * Tue Aug 21 14:13:40 1990  Igor Metz <metz@iam.unibe.ch>
  5.  *
  6.  * $Header: /private/postgres/src/contrib/pgperl/RCS/usersub.c,v 1.1 1990/10/24 20:31:25 cimarron Exp $
  7.  * $Log: usersub.c,v $
  8.  * Revision 1.1  1990/10/24  20:31:25  cimarron
  9.  * Initial revision
  10.  *
  11.  * Revision 1.1  90/08/23  11:49:47  metz
  12.  * Initial revision
  13.  * 
  14.  */
  15.  
  16. #include "EXTERN.h"
  17. #include "perl.h"
  18.  
  19. extern void init_postgres_stuff();
  20.  
  21. int
  22. userinit()
  23. {
  24.   init_postgres_stuff();
  25.   return 0;
  26. }
  27.  
  28.